/*字数滚动*/
.scroll 
{
    width: 150px;
    height: 30px;
    line-height: 30px;
    float:right;
    margin-right:20px;
    font-size: 12px;
    white-space: nowrap; /*文字不折行*/
    overflow: hidden; /*文字溢出隐藏*/
     /*margin: 0 auto;*/
     }

.scroll span {
     display: inline-block;
     /*inline样式不能使用动画*/
     animation: scroll 10s linear infinite; /*滚动动画*/
     }
@keyframes scroll {
            from {
                transform: translateX(150px); /*div多宽就写多宽*/
            }

            to {
                transform: translateX(-100%);
            }
        }
        
 /*信息列表展示*/  
.content {
        width:1000px;
        border:soild 1px black;
        background-color:White;
    }
    .TablesLists 
    {
        width:1000px;
        border-collapse:collapse;
        margin: 0 auto;
    }
    .TablesLists th,.TablesLists td {
        padding:10px;
        border-bottom:1px solid black;
        margin: 0 auto;
    }
    .alternating {
        background-color:#eeeeee;
        }

/*欢迎供应商入库滚动显示*/
.gysrkroll 
{
    width: 200px;
    height: 30px;
    line-height: 30px;
    float:right;
    margin-right:20px;
    font-size: 18px;
    white-space: nowrap; /*文字不折行*/
    overflow: hidden; /*文字溢出隐藏*/
     /*margin: 0 auto;*/
     }

.gysrkroll span {
     display: inline-block;
     /*inline样式不能使用动画*/
     animation: gysrkroll 10s linear infinite; /*滚动动画*/
     }
@keyframes gysrkroll {
            from {
                transform: translateX(200px); /*div多宽就写多宽*/
            }

            to {
                transform: translateX(-100%);
            }
        }